home *** CD-ROM | disk | FTP | other *** search
/ Trading on the Edge / Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin / pc / pc_files / venddemo / finance / ezloan / ez-loan.doc < prev    next >
Text File  |  1992-09-23  |  29KB  |  583 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.                         ================================
  17.                        |             EZ-Loan            |
  18.                        |                                |
  19.                        | (The loan payment calculator)  |
  20.                        |          Version 2.0           |
  21.                        |                                |
  22.                        |        Instruction Manual      |
  23.                         ================================
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.                                                    by:
  35.                                                    John Jenkins
  36.  
  37.  
  38.  
  39.                            === Introduction ===
  40.  
  41.  
  42. How often have you wanted to quickly figure out how much a loan payment
  43. would be per month for something you really wanted to buy ?   Thanks to
  44. EZ-Loan, you can quickly throw in the following numbers:
  45.                          Interest Rate,
  46.                              Principal Amount,
  47.                              Term Length,
  48.  
  49. and instantly have in front of you:
  50.                          Monthly Payment
  51.                              Total of Payments
  52.                              Total Interest
  53.  
  54. In addition, you can also obtain a complete payment schedule, with 
  55. starting balance, amount of interest paid, amount of principal paid, and 
  56. ending balance for each month.  Other features include:
  57.                              Making Extra Payments
  58.                              Saving the schedule to a file
  59.                              Printing the schedule
  60.  
  61.  
  62.  
  63.                        === EZ-Loan Requirements ===
  64.  
  65. EZ-Loan requires an IBM compatible with at least 256K to run.  It runs
  66. fastest when installed on a hard drive.   The monitor type does not matter.
  67. EZ-Loan is written in Turbo-C and has been tested on the following computers:
  68.  
  69.                          8088-8 MGA MS-DOS 3.3 & MS-DOS 4.0
  70.                          286-12 VGA MS-DOS 4.0 & MS-DOS 5.0
  71.                          386-33 VGA MS-DOS 5.0
  72.                          486-33 VGA MS-DOS 5.0
  73.  
  74.  
  75.                        === EZ-Loan Installation ===
  76.  
  77. To install EZ-Loan, you need only 200K of free disk space.   Simply copy
  78. the files on the distribution to the directory of your choice.  There is
  79. no set up or configuration required, simply plug and play.
  80.  
  81.  
  82.  
  83.  
  84.                        === How EZ-Loan Works ===
  85.  
  86. When you first execute ez-loan, you will be presented with a screen (see 
  87. Figure 1) with nine (9) lines of empty fields.  You enter the amount of the 
  88. loan in column number 1 (titled [Amount Borrowed]), the term length of the 
  89. loan in column number 2 (titled [Number of Payments]), and the interest 
  90. rate in column number 3 (titled [Interest Rate]).
  91.  
  92. Looking at the bottom of the screen, you will see two "buttons" defined.  
  93. F1 will create a payment schedule and F2 will clear all the fields on the 
  94. screen.
  95.  
  96.                     === Moving Around The Screen ===
  97.  
  98. You can move around the screen using the arrow keys.  If you fill a field 
  99. completely, the cursor will automatically move to the next field.  Otherwise, 
  100. pressing TAB, RETURN, or DOWN ARROW will move the cursor to the next field.  
  101. Pressing the UP ARROW will move to the previous field, and pressing ESC 
  102. will exit the current screen.
  103.  
  104. ===============================================================================
  105.                          Calculate Loan Monthly Payment
  106.  
  107.  
  108.         Amount    Number of  Interest    Monthly      Total       Total of
  109.        Borrowed   Payments     Rate      Payment     Interest     Payments
  110.          ($)      (months)     (%)         ($)         ($)          ($)
  111.  
  112.   1.   _______      ___       _____     _________   __________   __________
  113.   2.   _______      ___       _____     _________   __________   __________
  114.   3.   _______      ___       _____     _________   __________   __________
  115.   4.   _______      ___       _____     _________   __________   __________
  116.   5.   _______      ___       _____     _________   __________   __________
  117.   6.   _______      ___       _____     _________   __________   __________
  118.   7.   _______      ___       _____     _________   __________   __________
  119.   8.   _______      ___       _____     _________   __________   __________
  120.   9.   _______      ___       _____     _________   __________   __________
  121.  
  122.  
  123.  
  124.                              Enter amount borrowed
  125.   ___________________________________________________________________________
  126.  | F1 = Calculate and Display Amortization Schedule | F2 = Clear All Fields  |
  127.   --------------------------------------------------------------------------- 
  128.                                                                    OVERTYPE
  129. ===============================================================================
  130.                          Figure 1 - Initial Screen
  131.  
  132.  
  133.  
  134. After the fields have been filled, and the cursor has moved to the next 
  135. field, the columns 4 through 6 will be filled automatically with the 
  136. monthly payment, total interest, and total of payments.  All the fields 
  137. may be filled to get a comparison of different scenarios, such as 
  138. different interest rates, with the same loan amount and term length.
  139.  
  140. Example:
  141.      I want to buy a $120,000 house and pay it off in 30 years.  I also
  142.      want to check out different interest rates, and what would happen
  143.      if I took the loan for 15 years instead.  See Figure 2 for what the
  144.      screen would look like.
  145.  
  146. ===============================================================================
  147.                          Calculate Loan Monthly Payment
  148.  
  149.  
  150.         Amount    Number of  Interest    Monthly      Total       Total of
  151.        Borrowed   Payments     Rate      Payment     Interest     Payments
  152.          ($)      (months)     (%)         ($)         ($)          ($)
  153.  
  154.   1.    120000      360           9        965.55    227596.97    347596.97
  155.   2.    120000      360           8        880.52    196986.30    316986.30
  156.   3.    120000      360           7        798.36    167410.68    287410.68
  157.   4.    120000      360           6        719.46    139005.83    259005.83
  158.   5.    120000      180           9       1217.12     99081.58    219081.58
  159.   6.    120000      180           8       1146.78     86420.85    206420.85
  160.   7.    120000      180           7       1078.59     74146.91    194146.91
  161.   8.    120000      180           6       1012.63     62273.07    182273.07
  162.   9.                ___       _____     _________   __________   __________
  163.  
  164.  
  165.  
  166.                              Enter amount borrowed
  167.   ___________________________________________________________________________
  168.  | F1 = Calculate and Display Amortization Schedule | F2 = Clear All Fields  |
  169.   --------------------------------------------------------------------------- 
  170.                                                                      OVERTYPE
  171. ===============================================================================
  172.                    Figure 2 - Screen with calculated data
  173.  
  174.  
  175.  
  176.                    === Generating a Payment Schedule ===
  177.  
  178. One of the more useful features of EZ-Loan is that a payment schedule
  179. can be generated.  By pressing F1, a small window (Figure 3) will 
  180. pop up and you will be asked to give the line number of the data you 
  181. wish to use to generate the table.   Type the line number, and press
  182. RETURN.
  183.  
  184. ===============================================================================
  185.  
  186.                   +------  Which line number ?  (1-9)  ------+
  187.                   |                                          |
  188.                   |                    1_                    |
  189.                   |                                          |
  190.                   -------------------------------- OVERTYPE -+
  191.  
  192. ===============================================================================
  193.                        Figure 3 - Line number window
  194.  
  195.  
  196. The menu window shown in Figure 4 will the be displayed, giving the choice 
  197. between two different types of tables:  Payment Number based and Payment Date 
  198. based.  Either use the UP/DOWN arrow keys, or type the number of your choice.
  199. See section titled: "Table based on payment number" for choice #1 or 
  200. "Table based on payment date" for choice #2 for further descriptions.
  201.  
  202.  
  203. ===============================================================================
  204.  
  205.                +---  Choose an amortization schedule format  ---+             
  206.                |                                                |             
  207.                |     1.  Table with Payment Numbers only        |             
  208.                |     2.  Table with Payment Dates only          |             
  209.                |                                                |             
  210.                |      To produce a table by payment number      |             
  211.                +------------------------------------------------+             
  212. ===============================================================================
  213.                        Figure 4 - Table Format menu
  214.  
  215.  
  216.  
  217.  
  218.  
  219.                     ====  Table based on payment number  ====
  220.  
  221.  
  222. The complete payment schedule, from payment #1 to the end of the term,
  223. will be displayed (see Figure 5).  This table can be scrolled through 
  224. using the UP and DOWN ARROWS or HOME will go to the FIRST PAGE, and 
  225. END will go to the LAST PAGE.  PGUP and PGDN will move backward and 
  226. forward one page.
  227.  
  228.  
  229. ===============================================================================
  230.                              Amortization Schedule
  231.     ________________________________________________________________________
  232.    | Pay't |  Starting  |   Payment  | Principal  |  Interest  | Remaining  |
  233.    |   #   |  Balance   |    Due     |   Paid     |    Paid    |  Balance   |
  234.    |-------|------------|------------|------------|------------|------------|
  235.    |     1 |  120000.00 |     965.55 |      65.55 |     900.00 |  119934.45 |
  236.    |     2 |  119934.45 |     965.55 |      66.04 |     899.51 |  119868.41 |
  237.    |     3 |  119868.41 |     965.55 |      66.54 |     899.01 |  119801.87 |
  238.    |     4 |  119801.87 |     965.55 |      67.04 |     898.51 |  119734.84 |
  239.    |     5 |  119734.84 |     965.55 |      67.54 |     898.01 |  119667.30 |
  240.    |     6 |  119667.30 |     965.55 |      68.05 |     897.50 |  119599.25 |
  241.    |     7 |  119599.25 |     965.55 |      68.56 |     896.99 |  119530.70 |
  242.    |     8 |  119530.70 |     965.55 |      69.07 |     896.48 |  119461.63 |
  243.    |     9 |  119461.63 |     965.55 |      69.59 |     895.96 |  119392.04 |
  244.    |    10 |  119392.04 |     965.55 |      70.11 |     895.44 |  119321.93 |
  245.    |    11 |  119321.93 |     965.55 |      70.64 |     894.91 |  119251.29 |
  246.    |    12 |  119251.29 |     965.55 |      71.17 |     894.38 |  119180.13 |
  247.    |    13 |  119180.13 |     965.55 |      71.70 |     893.85 |  119108.43 |
  248.    |    14 |  119108.43 |     965.55 |      72.24 |     893.31 |  119036.19 |
  249.    |    15 |  119036.19 |     965.55 |      72.78 |     892.77 |  118963.41 |
  250.    |_______|____________|____________|____________|____________|____________|
  251.     ____________________ ________________ _____________ ____________________
  252.    |         F1         |       F2       |     F3      |         F4         |
  253.    | Make Extra Payment | Original Table | Print Table | Save Table to File |
  254.     -------------------- ---------------- ------------- --------------------
  255. ===============================================================================
  256.                      Figure 5 - Payment Schedule Table
  257.  
  258.  
  259.  
  260.  
  261.          === Special Operations on a Payment Number Schedule ===
  262.  
  263. Note the function keys at the bottom of the page.  A nice feature of EZ-Loan 
  264. is that you will be able predict what will happen if you decide to make an 
  265. extra payment at any time during the loan.  As with all extra payments, this 
  266. money will go only towards paying off principal.  
  267.  
  268. Press F1 and a small window like that in Figure 6 will pop up and ask for 
  269. the payment amount and the number from column 1 on the schedule at which you 
  270. want to apply the payment.  Fill in the blanks and press RETURN.
  271.  
  272.  
  273. ===============================================================================
  274.  
  275.                    +-- Enter starting month and year ---+
  276.                    |                                    |
  277.                    |  Extra payment amount:  _____      |
  278.                    |  Payment # to apply at: ___        |
  279.                    |                                    |
  280.                    |      Enter amount of payment       |
  281.                    +------------------------------------+
  282.  
  283. ===============================================================================
  284.                     Figure 6 - Extra Payment amount window
  285.  
  286.  
  287.  
  288.  
  289. The screen will change to reflect what has been done as a result of the 
  290. extra payment (see Figure 7).  If you go to the bottom of the table, you 
  291. can see which payments have been eliminated by this extra payment.  Goes 
  292. to show how far an extra payment can go.  In the example shown, almost 100 
  293. payments were eliminated just because of the one extra payment made !!
  294.  
  295. ===============================================================================
  296.                              Amortization Schedule
  297.     ________________________________________________________________________
  298.    | Pay't |  Starting  |   Payment  | Principal  |  Interest  | Remaining  |
  299.    |   #   |  Balance   |    Due     |   Paid     |    Paid    |  Balance   |
  300.    |-------|------------|------------|------------|------------|------------|
  301.    |     1 |  120000.00 |     965.55 |      65.55 |     900.00 |  119934.45 |
  302.    |     2 |  119934.45 |     965.55 |      66.04 |     899.51 |  119868.41 |
  303.    |     3 |  119868.41 |     965.55 |      66.54 |     899.01 |  119801.87 |
  304.    |     4 |  119801.87 |     965.55 |      67.04 |     898.51 |  119734.84 |
  305.    |     5 |  119734.84 |     965.55 |      67.54 |     898.01 |  119667.30 |
  306.    |     5 |  119667.30 |   10000.00 |   10000.00 |       0.00 |  109667.30 |
  307.    |     6 |  109667.30 |     965.55 |     143.05 |     822.50 |  109524.25 |
  308.    |     7 |  109524.25 |     965.55 |     144.12 |     821.43 |  109380.13 |
  309.    |     8 |  109380.13 |     965.55 |     145.20 |     820.35 |  109234.93 |
  310.    |     9 |  109234.93 |     965.55 |     146.29 |     819.26 |  109088.65 |
  311.    |    10 |  109088.65 |     965.55 |     147.39 |     818.16 |  108941.26 |
  312.    |    11 |  108941.26 |     965.55 |     148.49 |     817.06 |  108792.77 |
  313.    |    12 |  108792.77 |     965.55 |     149.60 |     815.95 |  108643.17 |
  314.    |    13 |  108643.17 |     965.55 |     150.73 |     814.82 |  108492.44 |
  315.    |    14 |  108492.44 |     965.55 |     151.86 |     813.69 |  108340.58 |
  316.    |_______|____________|____________|____________|____________|____________|
  317.     ____________________ ________________ _____________ ____________________
  318.    |         F1         |       F2       |     F3      |         F4         |
  319.    | Make Extra Payment | Original Table | Print Table | Save Table to File |
  320.     -------------------- ---------------- ------------- --------------------
  321. ===============================================================================
  322.                      Figure 7 - result of Extra Payment
  323.  
  324.  
  325. This process may be repeated any number of times.  The biggest payment
  326. that will be applied is the loan balance at the time the extra payment
  327. is made.
  328.  
  329. If you want the original table to be displayed, press F2 and the table
  330. will be restored.
  331.  
  332.  
  333.  
  334.  
  335.                       === Printing a Schedule ===
  336.  
  337. EZ-Loan allows a payment schedule to be sent to a printer.  At this 
  338. time, only dot-matrix have been tested, although the name of the printer 
  339. can be given.  Press F3 and the window in Figure 8 will be displayed.
  340. Enter the printer name and press RETURN to print the schedule.
  341.  
  342. ===============================================================================
  343.  
  344.                   +----------Enter name of printer-----------+
  345.                   |                                          |
  346.                   |     ________________________________     |
  347.                   |                                          |
  348.                   +------------------------------- OVERTYPE -+
  349.  
  350. ===============================================================================
  351.                          Figure 8 - Printer name window
  352.  
  353.  
  354.  
  355.                       === Saving a Schedule ===
  356.  
  357. EZ-Loan allows a payment schedule to be saved to a file.  Press F3 and 
  358. the window in Figure 9 will be displayed.  Enter the file name and 
  359. press RETURN to save the schedule.
  360.  
  361.  
  362. ===============================================================================
  363.  
  364.                   +------------Enter name of file------------+
  365.                   |                                          |
  366.                   |     ________________________________     |
  367.                   |                                          |
  368.                   +------------------------------- OVERTYPE -+
  369.  
  370. ===============================================================================
  371.                            Figure 9 - Filename window
  372.  
  373.  
  374.  
  375.  
  376.  
  377.                     ====  Table based on payment date  ====
  378.  
  379.  
  380. In order to create a table giving dates, the date of the first payment
  381. of the loan must be entered.  A window will pop up requiring this data
  382. be entered (see Figure 10).  The month may be entered as either text or
  383. the month number.  By pressing ?, a list of months will be displayed.
  384.  
  385. ===============================================================================
  386.  
  387.                     +-- Enter starting month and year ---+                   
  388.                     |                                    |                    
  389.                     |  Loan Starting Month: _________    |                    
  390.                     |  Loan Starting Year:  __           |                    
  391.                     |                                    |                    
  392.                     |     Enter loan starting month      |                    
  393.                     +------------------------- OVERTYPE -+
  394.  
  395. ===============================================================================
  396.                            Figure 10 - Loan dates
  397.  
  398.  
  399. The complete payment schedule, from payment #1 to the end of the term,
  400. will be displayed (see Figure 11).  This table can be scrolled through 
  401. using the UP and DOWN ARROWS or HOME will go to the FIRST PAGE, and 
  402. END will go to the LAST PAGE.  PGUP and PGDN will move backward and 
  403. forward one page.
  404.  
  405.  
  406. ===============================================================================
  407.                              Amortization Schedule
  408.     ________________________________________________________________________
  409.    | Pay't |  Starting  |   Payment  | Principal  |  Interest  | Remaining  |
  410.    | Date  |  Balance   |    Due     |   Paid     |    Paid    |  Balance   |
  411.    |-------|------------|------------|------------|------------|------------|
  412.    | 01/90 |  120000.00 |     880.52 |      80.52 |     800.00 |  119919.48 |
  413.    | 02/90 |  119919.48 |     880.52 |      81.06 |     799.46 |  119838.42 |
  414.    | 03/90 |  119838.42 |     880.52 |      81.60 |     798.92 |  119756.83 |
  415.    | 04/90 |  119756.83 |     880.52 |      82.14 |     798.38 |  119674.68 |
  416.    | 05/90 |  119674.68 |     880.52 |      82.69 |     797.83 |  119592.00 |
  417.    | 06/90 |  119592.00 |     880.52 |      83.24 |     797.28 |  119508.76 |
  418.    | 07/90 |  119508.76 |     880.52 |      83.79 |     796.73 |  119424.96 |
  419.    | 08/90 |  119424.96 |     880.52 |      84.35 |     796.17 |  119340.61 |
  420.    | 09/90 |  119340.61 |     880.52 |      84.92 |     795.60 |  119255.69 |
  421.    | 10/90 |  119255.69 |     880.52 |      85.48 |     795.04 |  119170.21 |
  422.    | 11/90 |  119170.21 |     880.52 |      86.05 |     794.47 |  119084.16 |
  423.    | 12/90 |  119084.16 |     880.52 |      86.63 |     793.89 |  118997.53 |
  424.    | 01/91 |  118997.53 |     880.52 |      87.20 |     793.32 |  118910.33 |
  425.    | 02/91 |  118910.33 |     880.52 |      87.78 |     792.74 |  118822.54 |
  426.    | 03/91 |  118822.54 |     880.52 |      88.37 |     792.15 |  118734.17 |
  427.    |_______|____________|____________|____________|____________|____________|
  428.     _____________ __________   ___________   __________   _________ _______
  429.    |      F1     |    F2    | |    F3     | |    F4    | |   F5    |  F6   |
  430.    |Extra Payment|Orig Table| |Print Table| |Save Table| |New Dates|Summary|
  431.     ------------------------   -----------   ----------   -----------------
  432. ===============================================================================
  433.                      Figure 11 - Date Based Schedule Table
  434.  
  435.  
  436.  
  437.  
  438.          === Special Operations on a Payment Date Schedule ===
  439.  
  440. Note the function keys at the bottom of the page.  A nice feature of EZ-Loan 
  441. is that you will be able predict what will happen if you decide to make an 
  442. extra payment at any time during the loan.  As with all extra payments, this 
  443. money will go only towards paying off principal.  
  444.  
  445. Press F1 and a small window like that in Figure 12 will pop up and ask for 
  446. information that will be used to construct the extra payment(s).   You will 
  447. be asked for the extra payment amount and when it is to be applied.  One 
  448. difference from the payment number schedule is that REGULAR extra payments 
  449. can be applied at one time.   The period of time that the extra payments will
  450. be in effect can be entered as well as the payment frequency.  Only one of 
  451. the payment frequency choices can be made at a time.  In order to select the 
  452. payment frequency, simply type either 'X' or 'x'.  The space character and 
  453. delete/backspace will clear a choice.  By default and if none are chosen, the 
  454. payment will be made only once, at the starting date.
  455.  
  456. Note: if the "until" field is left blank, the extra payment will be in effect
  457.       until the end of the loan term.
  458.  
  459. ===============================================================================
  460.  
  461.          +------------ Enter extra payment information -------------+
  462.          |                                                          |
  463.          |    Payment Amount:   100____                             |
  464.          |    Payment(s) Applied: starting  1/90  until: __/__      |
  465.          |    Payment Frequency:                                    |
  466.          |     One Time Only  [_]     Annually  [_]                 |
  467.          |     Semi Annually  [_]     Quarterly [_]                 |
  468.          |     Monthly        [X]                                   |
  469.          |                Enter extra payment amount                |
  470.          +----------------------------------------------- OVERTYPE -+
  471.  
  472. ===============================================================================
  473.                     Figure 12 - Extra Payment window
  474.  
  475.  
  476.  
  477.  
  478. The screen will change to reflect what has been done as a result of the 
  479. extra payment(s) (see Figure 13). 
  480.  
  481. ===============================================================================
  482.                              Amortization Schedule
  483.     ________________________________________________________________________
  484.    | Pay't |  Starting  |   Payment  | Principal  |  Interest  | Remaining  |
  485.    | Date  |  Balance   |    Due     |   Paid     |    Paid    |  Balance   |
  486.    |-------|------------|------------|------------|------------|------------|
  487.    | 01/90 |  120000.00 |     880.52 |      80.52 |     800.00 |  119919.48 |
  488.    | 01/90 |  119919.48 |     100.00 |     100.00 |       0.00 |  119819.48 |
  489.    | 02/90 |  119819.48 |     880.52 |      81.72 |     798.80 |  119737.76 |
  490.    | 02/90 |  119737.76 |     100.00 |     100.00 |       0.00 |  119637.76 |
  491.    | 03/90 |  119637.76 |     880.52 |      82.93 |     797.59 |  119554.82 |
  492.    | 03/90 |  119554.82 |     100.00 |     100.00 |       0.00 |  119454.82 |
  493.    | 04/90 |  119454.82 |     880.52 |      84.15 |     796.37 |  119370.67 |
  494.    | 04/90 |  119370.67 |     100.00 |     100.00 |       0.00 |  119270.67 |
  495.    | 05/90 |  119270.67 |     880.52 |      85.38 |     795.14 |  119185.28 |
  496.    | 05/90 |  119185.28 |     100.00 |     100.00 |       0.00 |  119085.28 |
  497.    | 06/90 |  119085.28 |     880.52 |      86.62 |     793.90 |  118998.67 |
  498.    | 06/90 |  118998.67 |     100.00 |     100.00 |       0.00 |  118898.67 |
  499.    | 07/90 |  118898.67 |     880.52 |      87.86 |     792.66 |  118810.80 |
  500.    | 07/90 |  118810.80 |     100.00 |     100.00 |       0.00 |  118710.80 |
  501.    | 08/90 |  118710.80 |     880.52 |      89.11 |     791.41 |  118621.69 |
  502.    |_______|____________|____________|____________|____________|____________|
  503.     _____________ __________   ___________   __________   _________ _______
  504.    |      F1     |    F2    | |    F3     | |    F4    | |   F5    |  F6   |
  505.    |Extra Payment|Orig Table| |Print Table| |Save Table| |New Dates|Summary|
  506.     ------------------------   -----------   ----------   -----------------
  507. ===============================================================================
  508.                      Figure 13 - result of Extra Payment
  509.  
  510.  
  511. This process may be repeated any number of times.  The biggest payment
  512. that will be applied is the loan balance at the time the extra payment
  513. is made.
  514.  
  515. If you want the original table to be displayed, press F2 and the table
  516. will be restored.
  517.  
  518.  
  519.  
  520.  
  521.            === Getting an Annual Summary of the Loan Activity ===
  522.  
  523. Another handy feature of EZ-Loan is the ability to generate an annual
  524. summary throughout the life of the loan.  Valuable information regarding
  525. interest and extra payments is contained within this summary.  To use this
  526. feature, press F6.  The table is shown in Figure 14. for the example above.
  527.  
  528.  
  529. ===============================================================================
  530.                          Annual Summary of Loan Activity
  531.     _______________________________________________________________________
  532.    | Tax  |  Total of  |  Total of  |  Total of  |  Total of  |   Ending   |
  533.    | Year |All Payments|Sched. P'mts| Extra P'mts|  Interest  |   Balance  |
  534.    |------|------------|------------|------------|------------|------------|
  535.    |  90  |   11766.24 |   10566.24 |    1200.00 |    9518.78 |  117752.54 |
  536.    |  91  |   11766.24 |   10566.24 |    1200.00 |    9332.24 |  115318.54 |
  537.    |  92  |   11766.24 |   10566.24 |    1200.00 |    9130.22 |  112682.52 |
  538.    |  93  |   11766.24 |   10566.24 |    1200.00 |    8911.43 |  109827.71 |
  539.    |  94  |   11766.24 |   10566.24 |    1200.00 |    8674.48 |  106735.96 |
  540.    |  95  |   11766.24 |   10566.24 |    1200.00 |    8417.87 |  103387.59 |
  541.    |  96  |   11766.24 |   10566.24 |    1200.00 |    8139.96 |   99761.31 |
  542.    |  97  |   11766.24 |   10566.24 |    1200.00 |    7838.98 |   95834.04 |
  543.    |  98  |   11766.24 |   10566.24 |    1200.00 |    7513.02 |   91580.82 |
  544.    |  99  |   11766.24 |   10566.24 |    1200.00 |    7160.00 |   86974.58 |
  545.    |  00  |   11766.24 |   10566.24 |    1200.00 |    6777.69 |   81986.03 |
  546.    |  01  |   11766.24 |   10566.24 |    1200.00 |    6363.64 |   76583.43 |
  547.    |  02  |   11766.24 |   10566.24 |    1200.00 |    5915.23 |   70732.41 |
  548.    |  03  |   11766.24 |   10566.24 |    1200.00 |    5429.59 |   64395.76 |
  549.    |  04  |   11766.24 |   10566.24 |    1200.00 |    4903.66 |   57533.18 |
  550.    |______|____________|____________|____________|____________|____________|
  551.       __________________________________
  552.      |     F1      |         F2         |
  553.      | Print Table | Save Table to File |
  554.       ----------------------------------
  555. ===============================================================================
  556.                      Figure 14 - Annual Summary for Loan
  557.  
  558.  
  559.  
  560.  
  561.                        === Spreading the news... ===
  562.  
  563. The author would appreciate any efforts to upload this program to all
  564. your favorite bulletin boards and shareware pools.
  565.  
  566.  
  567.  
  568.                         === Reporting any bugs ===
  569.  
  570. If you find anything you might think is a bug, please let me know.  I 
  571. want to provide a quality program.  Please note the configuration you
  572. are running on, exactly what happened, what was done to cause it, and
  573. any other helpful information.
  574.  
  575.  
  576.  
  577.                          === Coming Soon ... ===
  578.  
  579. I am currently working on a Version 3.0 of EZ-Loan.  In it, I am adding
  580. the following features, as well as fixing any bugs found in 1.0.
  581.  
  582.                   Better printer support
  583.